home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 131 / XENIATGM131.iso / Shareware / openOffice.org 641 / Windows / f_0047 / sbasic.jar / text / sbasic / common / 03120309.xml < prev    next >
Extensible Markup Language  |  2001-09-07  |  2KB  |  37 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>RTrim Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120309"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         span.T1{
  7.                 font-weight:bold;}
  8.         </style></head><body>
  9.   
  10.   
  11.   <help:to-be-embedded Eid="rtrim" xmlns:help="http://openoffice.org/2000/help">
  12.   <p class="Head1"><help:link Id="66521">RTrim Function [Runtime]</help:link></p>
  13.   <p class="Paragraph">Deletes all spaces at the end of a string expression.</p>
  14.   </help:to-be-embedded>
  15.   <p class="Paragraph">See also: <help:link Id="66632" Eid="ltrim" xmlns:help="http://openoffice.org/2000/help">LTrim Function</help:link></p>
  16.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  17.   <p class="Paragraph">RTrim (Text As String) <help:key-word value="RTrim" tag="kw66521_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  18.   <p class="Paragraph"><span class="T1">Return value</span>:</p>
  19.   <p class="Paragraph">String</p>
  20.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  21.   <p class="Paragraph">Text: Any string expression.</p>
  22.   <p class="Paragraph"><span class="T1">Example:</span></p>
  23.   <p class="PropText">Sub ExampleSpaces</p>
  24.   <p class="PropText">Dim sText2 as String,sText as String,sOut as String</p>
  25.   <p class="PropText">sText2 = " <*Las Vegas*> "</p>
  26.   <p class="PropText"/>
  27.   <p class="PropText">sOut = "'"+sText2 +"'"+ Chr(13)</p>
  28.   <p class="PropText">sText = Ltrim(sText2) REM sText = " <*Las Vegas*> "</p>
  29.   <p class="PropText">sOut = sOut + "'"+sText +"'" + Chr(13)</p>
  30.   <p class="PropText">sText = Rtrim(sText2) REM sText = " <*Las Vegas*> "</p>
  31.   <p class="PropText">sOut = sOut +"'"+ sText +"'" + Chr(13)</p>
  32.   <p class="PropText">sText = Trim(sText2) REM sText = " <*Las Vegas*> "</p>
  33.   <p class="PropText">sOut = sOut +"'"+ sText +"'"</p>
  34.   <p class="PropText">MsgBox sOut</p>
  35.   <p class="PropText">end sub</p>
  36.   <p class="PropText"/>
  37.  </body></html>